﻿* {
    padding: 0;
    margin: 0;
    list-style: none;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #000;
}

.textStyle {
    color: white;
    text-align: center;
    font-weight: 900;
    font-family: monospace;
    font-size: 20px;
}

.container {
    width: 80vw;
    max-width: 1024px;
    height: auto;
    margin: auto;
}

header {
    height: auto;
    width: 100%;
    color: #fff;
    background-color: #000;
    text-align: center;
    margin: auto;
    padding: 10px 0;
}

header .logo {
    cursor: pointer;
    font-weight: 300;
    font-size: 16px;
}

header ul {
    display: inline-flex;
    justify-content: flex-start;
    padding: 20px 0;
}

header ul li img {
    width: 25px;
    height: 25px;
    margin-bottom: -5px;
}

header ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-family: monospace;
    font-weight: 700;
    margin: 0 5px;
    letter-spacing: 1.5px;
    position: relative;
}

header ul li a::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 1px;
    background-color: #fff;
    bottom: 0;
    left: 0;
}

header ul li a:hover::before {
    width: 100%;
    transition: .3;
}

.sectionContainer {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 0 20px 0;
}

section.funky {
    background: url('/images/content_bg_02.png') no-repeat 50% 50%/cover;
}

section.creativeGame {
    background: url('/images/bg_footer.jpg') no-repeat 50% 50%/cover;
}

section.betdetail {
    background-color: #aaa;
}

.betdetailImg {
    height: 60px;
}

section .gp {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-family: monospace;
}

section .category {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #aaa;
    padding: 20px 0;
    font-family: monospace;
}

section .game2 {
    width: 120px;
    height: 120px;
    margin: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .7);
    position: relative;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
}

section .game2:hover {
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

section .game2:before {
    position: absolute;
    color: #fff;
    text-align: center;
    font-family: Microsoft JhengHei;
    letter-spacing: 1px;
    padding: 5px 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

section .game2 img {
    width: 100%;
}


section .game {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .7);
    position: relative;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
    margin-bottom: 10px;
}

section .game:hover {
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}

section .game:before {
    position: absolute;
    /*content: attr(data-device);*/
    color: #fff;
    text-align: center;
    font-family: Microsoft JhengHei;
    letter-spacing: 1px;
    padding: 5px 0;
    bottom: 0;
    right: 0;
    width: 100%;
    /*background-color: rgba(0,0,0,.7);*/
}

section .game img {
    width: 100%;
}

section .gameField {
    width: 124px;
    padding: 2px;
    margin: 10px;
    word-break: break-word;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.gameField.highlight {
    transition: all ease-in-out .3s;
    background: #06a6af;
}

.gameField.highlight:hover {
    transition: all ease-in-out .3s;
    background: #16c0c9;
}

section .gameField > p {
    margin-top: 4px;
    line-height: 1.2;
}

.gameField .textStyle {
    font-size: 12px;
}

section .part {

}

section.betdetail .part span {
    width: 100px;
    display: inline-block;
    font-size: 18px;
    margin: 10px 5px;
    color: #fff;
    font-family: monospace;
}

section.betdetail .part input {
    padding: 0 0 0 5px;
}

section.betdetail button {
    padding: 8px 10px;
    color: #fff;
    background-color: blue;
    border-radius: none;
    font-family: monospace;
    font-size: 16px;
}

input, select {
    padding: 2px 4px;
    border: none;
    border-radius: 2px;
    outline: none;
    font-family: monospace;
    font-size: 16px;
}

.launchSettingField {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.checkBoxField {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.filteredLaunchSettingForm {
    padding: 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

button {
    cursor: pointer;
}

.button {
    padding: 8px 10px;
    border: none;
    border-radius: 2px;
    outline: none;
    color: #fff;
    background-color: #06a6af;
    font-family: monospace;
    font-size: 16px;
}

.button:hover {
    transition: all ease-in-out .3s;
    background-color: #16c0c9;
}

.link {
    padding: 2px 10px;
    text-decoration: none;
    color: #06a6af;
    border: 2px solid transparent;
    border-bottom: 2px solid #06a6af;
    font-family: monospace;
    font-size: 16px;
    border-radius: 2px;
    
}

.link:hover {
    transition: all ease-in-out .3s;
    color: #fff;
    background-color: #16c0c9;
    border: 2px solid #16c0c9;
}

a {
    text-decoration: none;
    color: #06a6af;
}

section.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}